home *** CD-ROM | disk | FTP | other *** search
/ CD Classic 39 / CD CLASSIC #39 (1998).iso / EMPRESA / visio / Vistdstd / Install / Data.Z / GenericMFC.CPP < prev    next >
C/C++ Source or Header  |  1997-07-07  |  983b  |  36 lines

  1. // GenericMFC.cpp : Defines the initialization routines for the DLL.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "GenericMFC.h"
  6.  
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CGenericMFCApp
  15.  
  16. BEGIN_MESSAGE_MAP(CGenericMFCApp, CWinApp)
  17.     //{{AFX_MSG_MAP(CGenericMFCApp)
  18.         // NOTE - the ClassWizard will add and remove mapping macros here.
  19.         //    DO NOT EDIT what you see in these blocks of generated code!
  20.     //}}AFX_MSG_MAP
  21. END_MESSAGE_MAP()
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CGenericMFCApp construction
  25.  
  26. CGenericMFCApp::CGenericMFCApp()
  27. {
  28.     // TODO: add construction code here,
  29.     // Place all significant initialization in InitInstance
  30. }
  31.  
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CGenericMFCApp object
  34.  
  35. CGenericMFCApp theApp;
  36.